home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / math / atof.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-11  |  101 b   |  8 lines

  1. #include <stdio.h>
  2.  
  3. double atof(const char *nptr)
  4. { double a;
  5.   sscanf(nptr,"%lf",&a);
  6.   return a;
  7. }
  8.